home *** CD-ROM | disk | FTP | other *** search
/ Power Programmierung 2 / Power-Programmierung CD 2 (Tewi)(1994).iso / gnu / djgpp / contrib / dvx / inc / x11 / xaw / stripcha.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-07-15  |  2.8 KB  |  81 lines

  1. /*
  2. * $XConsortium: StripChart.h,v 1.2 89/08/24 11:52:00 kit Exp $
  3. */
  4.  
  5.  
  6. /***********************************************************
  7. Copyright 1987, 1988 by Digital Equipment Corporation, Maynard, Massachusetts,
  8. and the Massachusetts Institute of Technology, Cambridge, Massachusetts.
  9.  
  10.                         All Rights Reserved
  11.  
  12. Permission to use, copy, modify, and distribute this software and its 
  13. documentation for any purpose and without fee is hereby granted, 
  14. provided that the above copyright notice appear in all copies and that
  15. both that copyright notice and this permission notice appear in 
  16. supporting documentation, and that the names of Digital or MIT not be
  17. used in advertising or publicity pertaining to distribution of the
  18. software without specific, written prior permission.  
  19.  
  20. DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
  21. ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
  22. DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
  23. ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  24. WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
  25. ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
  26. SOFTWARE.
  27.  
  28. ******************************************************************/
  29.  
  30. #ifndef _XawStripChart_h
  31. #define _XawStripChart_h
  32.  
  33. /***********************************************************************
  34.  *
  35.  * StripChart Widget
  36.  *
  37.  ***********************************************************************/
  38.  
  39. /* Parameters:
  40.  
  41.  Name             Class        RepType        Default Value
  42.  ----             -----        -------        -------------
  43.  background         Background        Pixel        XtDefaultBackground
  44.  border             BorderColor    Pixel        XtDefaultForeground
  45.  borderWidth         BorderWidth    Dimension    1
  46.  destroyCallback     Callback        Pointer        NULL
  47.  foreground         Foreground        Pixel        XtDefaultForeground
  48.  getValue         Callback        Callback    NULL
  49.  height             Height        Dimension    120
  50.  highlight         Foreground        Pixel        Black
  51.  mappedWhenManaged   MappedWhenManaged    Boolean        True
  52.  minScale         Scale        int        1
  53.  reverseVideo         ReverseVideo    Boolean        False
  54.  update             Interval        int        5 (seconds)
  55.  width             Width        Dimension    120
  56.  x             Position        Position    0
  57.  y             Position        Position    0
  58.  
  59. */
  60.  
  61. #define DEFAULT_JUMP -1
  62.  
  63. #define XtCJumpScroll "JumpScroll"
  64. #define XtCScale "Scale"
  65.  
  66. #define XtNgetValue "getValue"
  67. #define XtNhighlight "highlight"
  68. #define XtNjumpScroll "jumpScroll"
  69. #define XtNminScale "minScale"
  70. #define XtNscale "scale"
  71. #define XtNupdate "update"
  72. #define XtNvmunix "vmunix"
  73.  
  74. typedef struct _StripChartRec *StripChartWidget;
  75. typedef struct _StripChartClassRec *StripChartWidgetClass;
  76.  
  77. extern WidgetClass stripChartWidgetClass;
  78.  
  79. #endif /* _XawStripChart_h */
  80. /* DON'T ADD STUFF AFTER THIS #endif */
  81.